/* Remove margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box !important; /* Ensure consistent box sizing */
    font-family: 'Source Sans 3', sans-serif;
    /* font-family: Helvetica, sans-serif !important; */
  }
  
  
  
  
  
  body {
    margin: 0;
    background-color: #FAF9F6;
    padding: 0;
  }
  
  /* Basic CSS Reset */
  p {
    margin: 0 !important;
  }
  

  @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

  




.navbar {
    position: fixed !important;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(245, 245, 231, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 8px 0;
}

/* Navbar on Scroll - Enhanced Shadow */
.navbar.scrolled {
    background-color: rgba(245, 245, 231, 0.95);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
}

/* Logo Styling */
.navbar-brand img {
    width: auto;
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
}

.nav-item {
    margin-left: 18px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect - Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #964B00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #964B00 !important;
    background-color: rgba(150, 75, 0, 0.08);
}

/* Active Link State */
.nav-link.active {
    color: #964B00 !important;
    font-weight: 600;
}

/* Contact Button Special Styling */
.contact-btn {
    background: linear-gradient(135deg, #964B00 0%, #7a3d00 100%) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 10px !important;
    /* box-shadow: 0 4px 12px rgba(150, 75, 0, 0.3); */
    transition: all 0.3s ease;
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #7a3d00 0%, #964B00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(150, 75, 0, 0.4);
    color: white !important;
}

/* ========================================
   MOBILE TOGGLE BUTTON - FIXED
   ======================================== */

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.navbar-toggle .bar {
    background-color: #1a1a1a;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Toggle Animation */
.navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   RESPONSIVE DESIGN - FIXED
   ======================================== */

/* Show toggle button at 1024px and below */
@media screen and (max-width: 1024px) {
    .navbar-toggle {
        display: flex !important;
    }

    /* Hide the navbar collapse by default */
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(245, 245, 231, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: left 0.4s ease;
        overflow-y: auto;
        padding: 30px 0;
        display: block !important; /* Force display */
    }

    /* Show menu when active */
    .navbar-collapse.show {
        left: 0 !important;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        display: flex !important; /* Force display */
    }

    .nav-item {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
        display: block !important; /* Force display */
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        font-size: 18px;
        border-radius: 12px;
        display: block !important; /* Force display */
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(150, 75, 0, 0.15);
    }

    .contact-btn {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Desktop - Show navbar normally */
@media screen and (min-width: 1025px) {
    .navbar-toggle {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        padding: 0 !important;
    }

    .navbar-nav {
        flex-direction: row !important;
        display: flex !important;
    }

    .nav-item {
        display: inline-block !important;
    }
}

@media screen and (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .navbar {
        padding: 6px 0;
    }

    .navbar-collapse {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show .nav-item {
    animation: fadeInDown 0.4s ease forwards;
    opacity: 0;
}

.navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
.navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.25s; }
.navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.3s; }











































  
  
  




















/* Container styling */
#carouselId {
  padding: 1.25rem;
  border-radius: 1.25rem;
  position: relative;
}

/* Indicator pill track */
.carousel-pill-indicator {
  display: flex;
  justify-content: center;
}

.pill-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 220px;
  height: 32px;
  background-color: rgba(245, 245, 235, 0.06); /* subtle #F5F5EB */
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Sliding active pill */
.pill-active {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc((100% - 6px) / 5);
  border-radius: 999px;
  background: linear-gradient(135deg, #964B00, #b46111);
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1), 
              background 200ms ease;
}

/* Invisible clickable segments */
.pill-segment {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  padding: 0;
  outline: none;
  transition: color 150ms ease;
}

/* Optional subtle feedback on hover / active */
.pill-segment:hover {
  background: radial-gradient(circle at center, rgba(245,245,235,0.12), transparent 70%);
}

.pill-segment:focus-visible {
  box-shadow: 0 0 0 2px rgba(245,245,235,0.6);
}

/* Active segment text indicator (small dot) */
.pill-segment::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 245, 235, 0.4);
  transition: background 180ms ease, transform 180ms ease;
}

.pill-segment.is-active::after {
  background: #F5F5EB;
  transform: scale(1.2);
}

/* Carousel images */
#carouselId .carousel-item img {
  object-fit: cover;
  max-height: 420px;
}

/* Controls on dark */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8)) invert(1);
}






















  
  /* Header section with background image */
  .header {
    background-image: url(../Assets/Litigation.png) !important;
    height: 100vh;
    width: 100%;
      background-size: cover; /* Ensures the image covers the element */
      background-position: center; /* Centers the image */
  
      background-attachment: fixed; /* Enables parallax effect */

    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; /* Keeps the navbar inside the header section */
  }
  
  
  
  
  
  /* General styling */
  .header-content {
    text-align: center;
    padding: 50px 20px; /* Add some padding for better layout */
  }  
  
  .header-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }  
  
  .header-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 40px;
  }  

  
  
  /* Explore button container */
  .explore {
    display: flex;
    margin-top:40px;
    justify-content: center;
    gap: 20px; /* Space between the buttons */
  }  
  
  /* Link styles */
  .explore-link {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
  }  
  
  /* Explore Program button */
  .explore-program {
    color: aliceblue;
    border: 1px solid #fff;
  }  
  
  .explore-program:hover {
    background-color: #fff;
    color: #964B00;
  }  
  
  /* Join Now button */
  .join-now {
    color: #964B00;
    background-color: #FFFDE5;
  }  
  
  .join-now:hover {
    background-color: #964B00;
    color: white;
  }  
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .header-title {
      font-size: 24px;
    }  
    
    .header-subtitle {
      font-size: 16px;
    }  
  
    .explore {
      margin-top: 20px;
      flex-direction: column; /* Stack the buttons vertically on smaller screens */
      gap: 10px;
    }  
  
    .explore-link {
      width: 80%; /* Make buttons smaller on mobile */
    }  
  }  
  
  
  
  
  /* Header section with background image */
  .header {
    background-image: url(./Assets/HS.png);
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  /* Header content styling */
  .header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
/* navbar */





/* Enroll */
.Enroll {
    background-color: #eaeaea;
    margin: 0% !important;
    padding: 0% !important;
}



.EnrollNow {
    display: flex;
    justify-content: flex-end; /* Aligns button to the right */
    align-items: flex-end; /* Aligns button to the bottom */
    height: 100%; /* Ensures the div takes full column height */
}

.EnrollNow a {
    color: white;
    background-color: #964B00;
    padding: 8px 30px;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
}

/* Default Styling */
.text1 {
    padding: 10px 80px !important; /* Large screen padding */
    text-align: left; /* Aligns text to left by default */
}


/* Styling for the heading */
.learn-heading {
    color: #964B00;
    margin-top: 5px;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .text1 {
        padding: 10px 40px !important; /* Reduce padding on tablets */
    }
}

@media (max-width: 768px) {
    .text1 {
        padding: 10px 30px !important; /* Further reduce padding on mobile */
        text-align: left; /* Centers text on mobile for better appearance */
    }  
}

.text2 {
    display: flex;
    padding: 10px 80px;
    flex-wrap: wrap; /* Allows stacking on small screens */
}

/* Container Styling */
.Enroll {
    background-color: #eaeaea;
    margin: 0 !important;
    padding: 0 !important;
}


/* Training Section */


/* Enroll Now Button Styling */
.EnrollNow {
    display: flex;
    align-items: center; /* Aligns button vertically */
    justify-content: end; /* Center on small screens */
}

/* Enroll Now Button */
.EnrollNow a {
    color: white;
    background-color: #964B00;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .text2 {
        padding: 10px 20px; /* Smaller padding on small screens */
    }

    .EnrollNow {
        justify-content: center; /* Center button on small screens */
    }




    .programimg img {
        width: 228px !important;
        
    }
    
    .Program{
        margin-bottom: 20px !important;
    }


    
    .Programs {
        padding: 10px 20px !important;
        margin: 0%;
    }
    
}











/* Base styles */
.MasterProtocol, .MasterProtocol1, .MasterProtocol2 {
  position: relative;
  transition: transform 1.5s ease-in-out, top 1.5s ease-in-out, left 1.5s ease-in-out, box-shadow 1.5s ease-in-out;
  will-change: transform, top, left, box-shadow;
}

/* Default stacked positions */
.MasterProtocol {
  z-index: 3;
  left: 22%;
  transform: rotate(-10deg);
}

.MasterProtocol1 {
  z-index: 2;
  transform: rotate(0deg);
}

.MasterProtocol2 {
  z-index: 1;
  left: -24%;
  transform: rotate(10deg);
}

/* When hovered - elements move to final position */
.MasterCourtroom.active .MasterProtocol,
.MasterCourtroom.active .MasterProtocol1,
.MasterCourtroom.active .MasterProtocol2 {
  top: 0;
  left: 0;
  transform: translate(0, 0) rotate(0deg);
}

/* Individual card hover effect */
.MasterProtocol.active,
.MasterProtocol1.active,
.MasterProtocol2.active {
  top: 20px;
  transform: translate(0, 0) rotate(0deg);
}
.MasterProtocol, .MasterProtocol1, .MasterProtocol2 {
  border-radius: 20px;
  width: 300p\x;
  height: 250px;
  background-color: #F5F5DC;
  padding: 20px 0px 0px 20px !important;
  margin: 0 !important;
}

.MasterCourtroom{
    display: flex;
    justify-content: center !important;
gap: 32px;
overflow-x: hidden;
}



.MasterProtocol img,
.MasterProtocol1 img,
.MasterProtocol2 img {
    width: 159px;
    height: auto;
}
























.imgcont {
    display: flex;
    justify-content: end;
    align-items: end !important;
}




/* Base styles for skill items */
.CourtroomSkillsContent1,
.CourtroomSkillsContent2,
.CourtroomSkillsContent3,
.CourtroomSkillsContent4 {
  position: relative;
  margin-top: 10px;
  padding: 20px;
  width: 500px;
  border-radius: 20px;
  background-color: #FFFDE5;
  transition: transform 1.5s ease-in-out, top 1.5s ease-in-out, left 1.5s ease-in-out;
  will-change: transform, top, left;
}

/* Default stacked positions */
.CourtroomSkillsContent1 { left: 22%; top: 70px; transform: rotate(0deg); }
.CourtroomSkillsContent2 { left: -22%; top: 70px; transform: rotate(5deg); }
.CourtroomSkillsContent3 { left: 21%; top: -120px; transform: rotate(8deg); }
.CourtroomSkillsContent4 { left: -22%; top: -120px; transform: rotate(-4deg); }

/* 🛠 Animation Effect when `active` class is added */
.CourtroomSkills.active .CourtroomSkillsContent1,
.CourtroomSkills.active .CourtroomSkillsContent2,
.CourtroomSkills.active .CourtroomSkillsContent3,
.CourtroomSkills.active .CourtroomSkillsContent4 {
  top: 0;
  left: 0;
  transform: translate(0, 0) rotate(0deg);
}
.CourtroomSkills {
  display: flex;
  justify-content: center;
  gap: 24px;
  overflow-x: hidden;
  flex-wrap: wrap;
  position: relative;
}

/* Base styles for skill items */
.CourtroomSkillsContent1,
.CourtroomSkillsContent2,
.CourtroomSkillsContent3,
.CourtroomSkillsContent4 {
  position: relative;
  margin-top: 10px;
  padding: 20px;
  width: 500px;
  border-radius: 20px;
  background-color: #FFFDE5;
  transition: transform 1.5s ease-in-out, top 1.5s ease-in-out, left 1.5s ease-in-out;
  will-change: transform, top, left;
}

/* Default stacked positions */
.CourtroomSkillsContent1 { left: 22%; top: 70px; transform: rotate(0deg); }
.CourtroomSkillsContent2 { left: -22%; top: 70px; transform: rotate(5deg); }
.CourtroomSkillsContent3 { left: 21%; top: -120px; transform: rotate(8deg); }
.CourtroomSkillsContent4 { left: -22%; top: -120px; transform: rotate(-4deg); }

/* 🛠 Animation Effect when `active` class is added */
.CourtroomSkills.active .CourtroomSkillsContent1,
.CourtroomSkills.active .CourtroomSkillsContent2,
.CourtroomSkills.active .CourtroomSkillsContent3,
.CourtroomSkills.active .CourtroomSkillsContent4 {
  top: 0;
  left: 0;
  transform: translate(0, 0) rotate(0deg);
}




.programimg img {
    width: 328px;
    
}

.programimg {
    display: flex;
    justify-content: center;
}

.Programs {
    display: flex;
    justify-content: space-around !important;
}


.Programs {
    padding: 10px 90px;
    margin: 0%;
}





/* Common Styles for All Program Feature Cards */
.ProgramFeatures1,
.ProgramFeatures2,
.ProgramFeatures3,
.ProgramFeatures4 {
    padding: 15px;
    border-radius: 20px;
    width: 260px;
    background-color: #F5F5DC;
    position: relative; /* Ensures positioning works as expected */
    top: 0px;
}

/* Individual Positioning & Rotation */
.ProgramFeatures1 { left: 42%; transform: rotate(0deg); }
.ProgramFeatures2 { left: 18%; transform: rotate(4deg); }
.ProgramFeatures3 { left: -5%; transform: rotate(-4deg); }
.ProgramFeatures4 { left: -28%; transform: rotate(8deg); }


/* When the section is active, animate elements */
.Features.active .ProgramFeatures1,
.Features.active .ProgramFeatures2,
.Features.active .ProgramFeatures3,
.Features.active .ProgramFeatures4 {
    top: 0;
    left: 0;
    transform: translate(0, 0) rotate(0deg);
    transition: transform 1s ease-in-out, left 1s ease-in-out;
}
/* Common styles for images inside Program Features */
.ProgramFeatures1 img,
.ProgramFeatures2 img,
.ProgramFeatures3 img,
.ProgramFeatures4 img {
    width: 32px;
    padding: 10px 0px;
}








.Features{
    display: flex;
justify-content: center;
gap: 24px;
margin: 0% !important;
}

























/* Ensure image scales properly */
.SubscribeContent1 .image img {
  width: 100%; /* Full width on smaller screens */
  height: auto; /* Maintain aspect ratio */
  max-width: 540px; /* Limit max size on larger screens */
  display: block;
  margin: 0 auto; /* Center align on small screens */
}

/* Layout adjustments */
.SubscribeContent1 {
  padding: 20px;
}


/* Subscribe input & button */
.subscribe-container {
  display: flex;
  flex-wrap: wrap; /* Stack input & button on smaller screens */
  gap: 10px;
  justify-content: center;
}

.subscribe-input {
  width: 70%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.subscribe-button {
  padding: 10px 15px;
  border: none;
  background-color: #964B00;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
 
  .SubscribeContent2{
    display: block;
  }
  

}



.SubscribeContent2{
  display: block;
  justify-content: start;
}






.subscribe-container {
  margin-top: 20px;
            display: flex;
            align-items: center;
            width: fit-content;
            background-color: #faf7dc; /* Light yellow background */
            padding: 5px;
            border-radius: 25px;
        }

        .subscribe-input {
            border: none;
            outline: none;
            background: transparent;
            padding: 10px;
            width: 280px;
            font-size: 16px;
            border-radius: 25px;
        }

        .subscribe-button {
            background-color: #8b4f13; /* Brown color */
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
        }

        .subscribe-button:hover {
            background-color: #6d3e0e;
        }

.subscribe{
  display: flex !important;
  justify-content: center;
  background-color: #F6F6F6;
}







/* footer */


/* ================= FOOTER ================= */

.Footer {
  background-color: #352513;   /* darker elegant brown */
  color: #ffffff;
  padding: 4rem 2rem;
}

/* Heading Section */
.Footer h2 {
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

/* Column Headings */
.Footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

/* Paragraph Text */
.Footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Links */
.Footer a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.Footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Icon Alignment */
.Footer svg {
  margin-right: 8px;
  vertical-align: middle;
}

.Phone,
.Gmail,
.Location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* Bottom Section */
.FooterBottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #bfbfbf;
}

/* Responsive */
@media (max-width: 768px) {
  .Footer {
    padding: 2.5rem 1.5rem;
    text-align: left;
  }

  .Footer h2 {
    font-size: 22px;
  }
}

